Page.TextRenderingModeEnum Enum
Enum that represents text rendering modes.
enum Page.TextRenderingModeEnum
Constants
FILL = 0 | This is the default setting - the text is filled using the FillColor |
STROKE = 1 | Outlines of the text are drawn using the StrokeColor |
FILL_THEN_STROKE = 2 | Combination of FILL and STROKE, the text is first filled using the FillColor and then outlines are drawn using StrokeColor. |
INVISIBLE = 3 | Text is drawn invisible. But you can still select the text in the generated PDF. |
FILL_CLIPPING = 4 | The text is filled using the FillColor. After its done the current clipping path is set to the text. |
STROKE_CLIPPING = 5 | Outlines of the text are drawn using the StrokeColor. After its done the current clipping path is set to the text. |
FILL_STROKE_CLIPPING = 6 | Combination of FILL_CLIPPING and STROKE_CLIPPING, the text is first filled using the FillColor and then outlines are drawn using StrokeColor. After its done the current clipping path is set to the text. |
CLIPPING = 7 | Draws nothing but sets current clipping path to the text. |